Description
Used to define an item in a ComboBox or ListBox form control.
Diagram
Overview
|
LISTITEM
Used to define an item in a ComboBox or ListBox form control.
|
text required xs:string
The text displayed in the combo box or list box.
|
|
value required xs:string
The value associated with the text.
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
text | xs:string | required | | | The text displayed in the combo box or list box. |
value | xs:string | required | | | The value associated with the text. |
Examples
ArcPad layer file (*.apl) with an edit form.
Source
<xs:element name="LISTITEM" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to define an item in a ComboBox or ListBox form control.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="text" use="required" type="xs:string">
<xs:annotation>
<xs:documentation>The text displayed in the combo box or list box.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="value" use="required" type="xs:string">
<xs:annotation>
<xs:documentation>The value associated with the text.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also